home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / virus / stelth22.zip / VIRUSDAT.C < prev    next >
C/C++ Source or Header  |  1992-02-10  |  671b  |  33 lines

  1. /*
  2. virusdat.c
  3. Stealth Bomber Version 2.2
  4.  
  5. Kevin Dean
  6. Fairview Mall P.O. Box 55074
  7. 1800 Sheppard Avenue East
  8. Willowdale, Ontario
  9. CANADA    M2J 5B9
  10. CompuServe ID: 76336,3114
  11.  
  12. February 10, 1992
  13.  
  14.     This module defines the _fcrc array used by the anti-virus CRC check.
  15. The default search string used by the CRCSET.EXE program is _STEALTH but may
  16. be changed by either modifying this file or defining another instance of _fcrc
  17. in another file earlier in the program link.
  18.  
  19.     This code is public domain.
  20. */
  21.  
  22.  
  23. #include "vircheck.h"
  24.  
  25.  
  26. #define STEALTH_NFILES  1
  27.  
  28.  
  29. const filecrc _fcrc[STEALTH_NFILES] =
  30.   {
  31.   '_', 'S', 'T', 'E', 'A', 'L', 'T', 'H'
  32.   };
  33.